home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / Other Langs / xlisp / XLisp 1.7 ƒ / examples / fact.lsp next >
Encoding:
Lisp/Scheme  |  1985-06-05  |  84 b   |  4 lines  |  [TEXT/????]

  1. (defun factorial (n)
  2.        (cond ((= n 1) 1)
  3.          (t (* n (factorial (- n 1))))))
  4.